home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / SYS / s / ChangePreferences.rexx < prev    next >
OS/2 REXX Batch file  |  1996-09-26  |  597b  |  25 lines

  1. /*  */
  2. options results
  3.  
  4. ADDRESS MEGAD
  5. dbug TRUE
  6.  
  7. /* See ARexxPrefsList.txt for Subscript definitions and possible values */
  8.  
  9. /* Set PF_CONFIRM_QUIT (16)  to TRUE (1) */
  10. SetFlag 16 1
  11.  
  12. /* Set PF_TAB_WIDTH (9) to the value of 4 */
  13. SetNumber 9 4
  14.  
  15. /* Set PF_CREATE_DIR_NAME (21) to "A_New_Directory_Name" */
  16. SetString 21 "A_New_Directory_Name"
  17.  
  18. /* Set first device gadget (0) to Path of "'Ram Disk:T'" and 
  19.     set Title to "'Temp Dir'" */
  20. SetDevice 0 "'Ram Disk:T'" "'Temp Dir'"
  21.  
  22. /* free All ARexx Program Controls */
  23. /* Commented out to prevent lost or your ARexx Program Controls */
  24. /* freePC ARexx */
  25.